home *** CD-ROM | disk | FTP | other *** search
/ BCI NET / BCI NET Dec 94.iso / archives / programming / c / gcc222-2.lha / gcc_include / bool.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-08  |  156 b   |  10 lines

  1. /*    boolean types for ansic.library        */
  2. /*    (c)Copyright 1992 Davide Pasetto     */
  3.  
  4. #ifndef _BOOL_H
  5. #define _BOOL_H
  6.  
  7. enum bool { FALSE = 0, TRUE = 1 };
  8.  
  9. #endif
  10.